home *** CD-ROM | disk | FTP | other *** search
/ Mac Easy 2010 May / Mac Life Ubuntu.iso / casper / filesystem.squashfs / usr / src / linux-headers-2.6.28-15 / drivers / media / video / mxc / capture / Kconfig next >
Encoding:
Text File  |  2009-09-09  |  1.4 KB  |  57 lines

  1. if VIDEO_MXC_CAMERA
  2.  
  3. menu "MXC Camera/V4L2 PRP Features support"
  4. config VIDEO_MXC_IPU_CAMERA
  5.     bool
  6.     depends on VIDEO_MXC_CAMERA && MXC_IPU
  7.     default y
  8.  
  9. choice
  10.     prompt "Select Camera/TV Decoder"
  11.     default MXC_CAMERA_OV3640
  12.     depends on VIDEO_MXC_CAMERA
  13.  
  14. config MXC_CAMERA_OV3640
  15.     tristate "OmniVision ov3640 camera support"
  16.     depends on !VIDEO_MXC_EMMA_CAMERA
  17.     ---help---
  18.       If you plan to use the ov3640 Camera with your MXC system, say Y here.
  19.  
  20. endchoice
  21.  
  22. config MXC_IPU_PRP_VF_SDC
  23.     tristate "Pre-Processor VF SDC library"
  24.     depends on VIDEO_MXC_IPU_CAMERA && FB_MXC_SYNC_PANEL
  25.     default y
  26.     ---help---
  27.       Use case PRP_VF_SDC:
  28.         Preprocessing image from smart sensor for viewfinder and
  29.         displaying it on synchronous display with SDC use case.
  30.         If SDC BG is selected, Rotation will not be supported.
  31.         CSI -> IC (PRP VF) -> MEM
  32.         MEM -> IC (ROT) -> MEM
  33.         MEM -> SDC (FG/BG)
  34.  
  35. config MXC_IPU_PRP_VF_ADC
  36.     tristate "Pre-Processor VF ADC library"
  37.     depends on VIDEO_MXC_IPU_CAMERA && FB_MXC_ASYNC_PANEL
  38.     default y
  39.     ---help---
  40.       Use case PRP_VF_ADC:
  41.         Preprocessing image from smart sensor for viewfinder and
  42.         displaying it on asynchronous display.
  43.         CSI -> IC (PRP VF) -> ADC2
  44.  
  45. config MXC_IPU_PRP_ENC
  46.     tristate "Pre-processor Encoder library"
  47.     depends on VIDEO_MXC_IPU_CAMERA
  48.     default y
  49.     ---help---
  50.       Use case PRP_ENC:
  51.         Preprocessing image from smart sensor for encoder.
  52.         CSI -> IC (PRP ENC) -> MEM
  53.  
  54. endmenu
  55.  
  56. endif
  57.